Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
@vue/devtools-shared
Advanced tools
> Internal utility types shared across @vue/devtools packages.
@vue/devtools-shared is a package that provides shared utilities and components for Vue Devtools. It is used to build and extend the Vue Devtools, which are tools for debugging and profiling Vue.js applications.
Component Inspector
This feature allows you to inspect Vue components within the Devtools. The code sample demonstrates how to set up a custom plugin that logs the inspected component instance.
import { setupDevtoolsPlugin } from '@vue/devtools-shared';
setupDevtoolsPlugin({
id: 'my-plugin',
label: 'My Plugin',
app: myVueApp
}, api => {
api.on.inspectComponent((payload, ctx) => {
console.log('Inspecting component:', payload.componentInstance);
});
});
Timeline Events
This feature allows you to add custom events to the Vue Devtools timeline. The code sample shows how to create a new timeline layer and add an event to it.
import { setupDevtoolsPlugin } from '@vue/devtools-shared';
setupDevtoolsPlugin({
id: 'my-plugin',
label: 'My Plugin',
app: myVueApp
}, api => {
api.addTimelineLayer({
id: 'my-timeline',
label: 'My Timeline',
color: 0xff0000
});
api.addTimelineEvent({
layerId: 'my-timeline',
event: {
time: Date.now(),
data: { message: 'Hello from my plugin!' }
}
});
});
Custom Inspector
This feature allows you to create custom inspectors in the Vue Devtools. The code sample demonstrates how to add a new inspector and define its tree and state.
import { setupDevtoolsPlugin } from '@vue/devtools-shared';
setupDevtoolsPlugin({
id: 'my-plugin',
label: 'My Plugin',
app: myVueApp
}, api => {
api.addInspector({
id: 'my-inspector',
label: 'My Inspector',
icon: 'search'
});
api.on.getInspectorTree((payload, ctx) => {
if (payload.inspectorId === 'my-inspector') {
payload.rootNodes = [{ id: 'root', label: 'Root Node' }];
}
});
api.on.getInspectorState((payload, ctx) => {
if (payload.inspectorId === 'my-inspector') {
payload.state = { 'Root Node': { message: 'Hello from my inspector!' } };
}
});
});
Vue Devtools is the official debugging and profiling tool for Vue.js applications. It provides a graphical interface for inspecting and debugging Vue components, Vuex state, and more. Compared to @vue/devtools-shared, it is a complete tool rather than a library for building tools.
React Devtools is a set of tools for inspecting the React component hierarchy, profiling performance, and debugging React applications. It is similar to Vue Devtools but tailored for React. Unlike @vue/devtools-shared, it is not a library for building custom devtools but a standalone tool.
Redux Devtools is a set of tools for debugging Redux applications. It allows you to inspect every dispatched action and the resulting state changes. While it is focused on Redux, it provides similar debugging capabilities as @vue/devtools-shared but for Redux state management.
Internal utility types shared across @vue/devtools packages.
FAQs
> Internal utility types shared across @vue/devtools packages.
The npm package @vue/devtools-shared receives a total of 760,990 weekly downloads. As such, @vue/devtools-shared popularity was classified as popular.
We found that @vue/devtools-shared demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.